crypto/sha256.digest.h (field)
57 uses
crypto/sha256 (current package)
sha256.go#L53: h [8]uint32
sha256.go#L73: b = binary.BigEndian.AppendUint32(b, d.h[0])
sha256.go#L74: b = binary.BigEndian.AppendUint32(b, d.h[1])
sha256.go#L75: b = binary.BigEndian.AppendUint32(b, d.h[2])
sha256.go#L76: b = binary.BigEndian.AppendUint32(b, d.h[3])
sha256.go#L77: b = binary.BigEndian.AppendUint32(b, d.h[4])
sha256.go#L78: b = binary.BigEndian.AppendUint32(b, d.h[5])
sha256.go#L79: b = binary.BigEndian.AppendUint32(b, d.h[6])
sha256.go#L80: b = binary.BigEndian.AppendUint32(b, d.h[7])
sha256.go#L95: b, d.h[0] = consumeUint32(b)
sha256.go#L96: b, d.h[1] = consumeUint32(b)
sha256.go#L97: b, d.h[2] = consumeUint32(b)
sha256.go#L98: b, d.h[3] = consumeUint32(b)
sha256.go#L99: b, d.h[4] = consumeUint32(b)
sha256.go#L100: b, d.h[5] = consumeUint32(b)
sha256.go#L101: b, d.h[6] = consumeUint32(b)
sha256.go#L102: b, d.h[7] = consumeUint32(b)
sha256.go#L124: d.h[0] = init0
sha256.go#L125: d.h[1] = init1
sha256.go#L126: d.h[2] = init2
sha256.go#L127: d.h[3] = init3
sha256.go#L128: d.h[4] = init4
sha256.go#L129: d.h[5] = init5
sha256.go#L130: d.h[6] = init6
sha256.go#L131: d.h[7] = init7
sha256.go#L133: d.h[0] = init0_224
sha256.go#L134: d.h[1] = init1_224
sha256.go#L135: d.h[2] = init2_224
sha256.go#L136: d.h[3] = init3_224
sha256.go#L137: d.h[4] = init4_224
sha256.go#L138: d.h[5] = init5_224
sha256.go#L139: d.h[6] = init6_224
sha256.go#L140: d.h[7] = init7_224
sha256.go#L238: binary.BigEndian.PutUint32(digest[0:], d.h[0])
sha256.go#L239: binary.BigEndian.PutUint32(digest[4:], d.h[1])
sha256.go#L240: binary.BigEndian.PutUint32(digest[8:], d.h[2])
sha256.go#L241: binary.BigEndian.PutUint32(digest[12:], d.h[3])
sha256.go#L242: binary.BigEndian.PutUint32(digest[16:], d.h[4])
sha256.go#L243: binary.BigEndian.PutUint32(digest[20:], d.h[5])
sha256.go#L244: binary.BigEndian.PutUint32(digest[24:], d.h[6])
sha256.go#L246: binary.BigEndian.PutUint32(digest[28:], d.h[7])
sha256block.go#L82: h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
sha256block.go#L127: dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7] = h0, h1, h2, h3, h4, h5, h6, h7
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |